.home-page {
  display: flex;
  color: white;
  padding: 1rem;
  align-items: center;
  min-height: 95vh;
  margin-top: 7rem;
  background-image: url("poker-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.home-content {
  display: flex;
  flex-direction: column;
  width: 35%;
  justify-content: center;
  height: 95vh;
  margin-left: 3rem;
}
@media (max-width: 786px) {
  .home-content {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .home-content {
    width: 80%;
  }
}
.home-heading {
  font-size: 3rem;
  font-weight: lighter;
}
.home-text {
  font-size: 2rem;
}
.home-img {
  object-fit: contain;
  width: 90%;
}
.home-download {
  font-size: 2rem;

  padding: 2rem 1.5rem;
  border: 1px solid white;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: all 500ms ease-in-out;
  width: fit-content;
}
.home-download:hover {
  background-color: white;
  color: #000;
}
.about {
  display: flex;
  flex-direction: column;
  padding: 2rem 5rem 10rem;

  background-image: url("about-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 90vh;
  justify-content: center;
}
.about-header {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.about-heading {
  margin: 2rem auto;
  font-size: 3.5rem;
  color: #19772b;
}
.about-text {
  font-size: 1.8rem;
  color: rgb(216, 216, 216);
  width: 60%;
  font-weight: 100;
  margin: 0 auto;
}

.join {
  display: flex;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: center;
  color: rgb(216, 216, 216);
}
.join-img {
  border-radius: 10px;
  color: rgb(216, 216, 216);

  width: 40%;
  object-fit: contain;
}
.join div {
  width: 40%;
}
.join-heading {
  font-size: 3rem;

  color: #19772b;
  font-weight: 800;
}
.join-paragraph {
  font-size: 1.7rem;
  font-weight: 100;
  width: 90%;
}

@media (max-width: 700px) {
  .join {
    flex-direction: column;
  }
  .join div {
    width: auto;
    text-align: center;
  }
  .join-img {
    border: none;
    padding: 0;
  }
  .order-1 {
    order: 2;
  }
  .order-2 {
    order: 1;
  }
}

.animation-right {
  opacity: 0;
  transform: translateX(50%);
  transition: all 750ms ease-in-out;
}
.animation-left {
  opacity: 0;
  transform: translateX(-50%);
  transition: all 750ms ease-in-out;
}
.fade-in {
  transform: translateX(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.animation-bottom {
  opacity: 0;
  transform: translateY(30%);
  transition: all 750ms ease-in-out;
}

.contact {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(38, 38, 38, 1) 70%,
    rgb(0, 0, 0) 100%
  );
  padding: 3rem 0;
  width: 100%;
}
.contact-main-heading {
  margin: 4rem auto;

  font-size: 3.5rem;
  color: #19772b;
  text-align: center;
}

.contact-cards {
  display: flex;
  color: white;
  justify-content: space-evenly;
  padding: 4rem 0;
  width: 100%;
}
.contact-card {
  width: 20%;
}
.contact-heading {
  font-size: 2rem;
}
.contact-info {
  font-size: 1.5rem;
}
.contact-cards .fa-envelope,
.contact-cards .fas {
  font-size: 5rem;
  padding-bottom: 1rem;
}
@media (max-width: 700px) {
  .contact-cards {
    padding: 4rem 0;
  }
}
